home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _10F6969EFDD5451AA77F0F7E51C7E2D0 < prev    next >
Encoding:
Text File  |  2006-08-04  |  631 b   |  25 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_Feedback():
  13.     return {
  14.         'HorizontalOffset': -100, 
  15.         'VerticalOffset': 100, 
  16.         'Intensity': 100, 
  17.         'Ellipse': App.Constants.Boolean.false, 
  18.         'Opacity': 10
  19.         }
  20.  
  21. def Do(Environment):
  22.     # Feedback
  23.     App.Do( Environment, 'Feedback',         Preset_Feedback())
  24.  
  25.